根据申请单ID查询结果
从业机构可调用该接口查询特约商户结算规则ID修改的结果。
| 请求参数 | 类型 | 描述 |
|---|---|---|
| application_id | string | 申请单编号 |
php
$instance->v3->merchantSettlement->merchantSettleRuleApplications->_application_id_->getAsync([
'application_id' => '20000011111',
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
print_r(json_decode((string) $response->getBody(), true));
})
->wait();php
$instance->chain('v3/merchant-settlement/merchant-settle-rule-applications/{application_id}')->getAsync([
'application_id' => '20000011111',
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
print_r(json_decode((string) $response->getBody(), true));
})
->wait();php
$instance['v3/merchant-settlement/merchant-settle-rule-applications/{application_id}']->getAsync([
'application_id' => '20000011111',
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
print_r(json_decode((string) $response->getBody(), true));
})
->wait();php
$response = $instance->v3->merchantSettlement->merchantSettleRuleApplications->_application_id_->get([
'application_id' => '20000011111',
]);
print_r(json_decode((string) $response->getBody(), true));php
$response = $instance->chain('v3/merchant-settlement/merchant-settle-rule-applications/{application_id}')->get([
'application_id' => '20000011111',
]);
print_r(json_decode((string) $response->getBody(), true));php
$response = $instance['v3/merchant-settlement/merchant-settle-rule-applications/{application_id}']->get([
'application_id' => '20000011111',
]);
print_r(json_decode((string) $response->getBody(), true));| 返回字典 | 类型 | 描述 |
|---|---|---|
| application_id | string | 申请单编号 |
| application_process_info | string | 申请单处理信息 |
| application_state | string | 申请单状态 |
| update_time | string | 最后更新时间 |
| acquiring_bank_id | string | 从业机构号 |
| channel_id | string | 渠道商户号 |
| sub_mchid | string | 从业机构特约商户号 |
| settle_rule_id | integer | 结算规则id |
参阅 官方文档